home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form AboutDialog
- BackColor = &H00000000&
- BorderStyle = 3 'Fixed Dialog
- Caption = "Property Setter"
- ClientHeight = 5145
- ClientLeft = 780
- ClientTop = 525
- ClientWidth = 4935
- ControlBox = 0 'False
- Height = 5550
- Left = 720
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 5145
- ScaleWidth = 4935
- ShowInTaskbar = 0 'False
- Top = 180
- Width = 5055
- Begin VB.CommandButton CmdOk
- Cancel = -1 'True
- Caption = "OK"
- Default = -1 'True
- Height = 495
- Left = 2040
- TabIndex = 2
- Top = 4560
- Width = 855
- End
- Begin VB.Label InstrLabel
- Appearance = 0 'Flat
- BackColor = &H80000005&
- BackStyle = 0 'Transparent
- Caption = $"About.frx":0000
- ForeColor = &H80000008&
- Height = 615
- Index = 3
- Left = 240
- TabIndex = 6
- Top = 3720
- Width = 4455
- WordWrap = -1 'True
- End
- Begin VB.Label InstrLabel
- Appearance = 0 'Flat
- BackColor = &H80000005&
- BackStyle = 0 'Transparent
- Caption = $"About.frx":0090
- ForeColor = &H80000008&
- Height = 615
- Index = 2
- Left = 240
- TabIndex = 5
- Top = 3000
- Width = 4455
- WordWrap = -1 'True
- End
- Begin VB.Label InstrLabel
- Appearance = 0 'Flat
- BackColor = &H80000005&
- BackStyle = 0 'Transparent
- Caption = "Enter a value in the Value: box and press the Set Values button to give the controls that value."
- ForeColor = &H80000008&
- Height = 495
- Index = 1
- Left = 240
- TabIndex = 4
- Top = 2520
- Width = 4455
- WordWrap = -1 'True
- End
- Begin VB.Label InstrLabel
- Appearance = 0 'Flat
- BackColor = &H80000005&
- BackStyle = 0 'Transparent
- Caption = "Enter the name of a property in the Name: box. Press the Get Values button to see the property values for the selected controls."
- ForeColor = &H80000008&
- Height = 855
- Index = 0
- Left = 240
- TabIndex = 3
- Top = 1800
- Width = 4455
- WordWrap = -1 'True
- End
- Begin VB.Image Image1
- Height = 795
- Left = 120
- Picture = "About.frx":0126
- Top = 120
- Width = 4695
- End
- Begin VB.Label RightsLabel
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Caption = "All rights reserved"
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H0000FF00&
- Height = 255
- Left = 120
- TabIndex = 1
- Top = 1320
- Width = 4695
- End
- Begin VB.Label Label1
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Caption = "Copyright 1997, John Wiley && Sons, Inc."
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H0000FF00&
- Height = 255
- Index = 0
- Left = 120
- TabIndex = 0
- Top = 960
- Width = 4695
- End
- Begin VB.Shape Shape1
- BorderColor = &H00008000&
- BorderWidth = 3
- FillColor = &H0080FF80&
- FillStyle = 0 'Solid
- Height = 2775
- Left = 120
- Top = 1680
- Width = 4695
- End
- Attribute VB_Name = "AboutDialog"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- ' ************************************************
- ' Property Setter About dialog.
- ' ************************************************
- Option Explicit
- Private Sub CmdOk_Click()
- Unload Me
- End Sub
- Private Sub Form_Activate()
- SetFocus
- End Sub
- ' ************************************************
- ' Initialize form variables.
- ' ************************************************
- Private Sub Form_Load()
- ' Add a copyright symbol.
- Label1(0).Caption = Chr$(169) & Label1(0).Caption
- ' Center the form.
- Left = (Screen.Width - Width) / 2
- Top = (Screen.Height - Height) / 2
- End Sub
-